home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-19 | 406 b | 21 lines |
- #
- # makefile for various unix-like utilities: strings, head and lc
- #
- # Copyright 1989 Edwin Hoogerbeets
- # This code is freely redistributable as long as no charge other than
- # reasonable copying fees is levied for it.
-
- #CFLAGS=-n -DDEBUG
- #LNDEBUG=-g
-
- all: strings head lc
-
- strings: strings.o
- ln $(LNDEBUG) strings.o -lc -o $@
-
- head: head.o
- ln head.o -lc -o $@
-
- lc: lc.o
- ln lc.o -lc -o $@
-